Home:ALL Converter>Download from a URL with C++

Download from a URL with C++

Ask Time:2010-10-22T00:04:02         Author:DrLazer

Json Formatter

I'm playing around with C++ for the first time in years. Making an app using Qt, with the Qt IDE. I want to make an app to integrate with the Flickr API. I've got to the point where i need to make a call to a URL.

Flickr API:

http://flickr.com/services/rest/?method=flickr.people.getInfo&api_key=987654321&auth_token=9765984&api_sig=8f3870be274f6c49b3e31a0c6728957f

Right then ..... I'm used to .NET so this would normally be easy. Is there something built into Qt to allow me to do this or do i need a C++ web API. If I do need an API can you recommend one that would do the job.

Kind Regards

Author:DrLazer,eproduced under the CC 4.0 BY-SA copyright license with a link to the original source and this disclaimer.
Link to original article:https://stackoverflow.com/questions/3989483/download-from-a-url-with-c
Stefan Monov :

Use QNetworkAccessManager. The page has an example.",
2010-10-21T16:10:55
yy